home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT2.SPK / test / test_b / lcl / repexpose < prev    next >
Text File  |  1996-08-28  |  396b  |  18 lines

  1. mutable type abst ;
  2. immutable type immut ;
  3.  
  4. char **globstring;
  5.  
  6. only abst abst_create (dependent abst p, only char *x, int i) 
  7.    char **globstring; { }
  8.  
  9. only char *abst_name (abst a) { }
  10. int abst_val (abst a) { }
  11. int *abst_aval (abst a) { }
  12. only abst abst_parent (only abst a) { }
  13. dependent char *immut_name (immut im) { }
  14. void abst_setIm (abst a, immut im) { }
  15. immut abst_getIm (abst a) { } 
  16.  
  17.  
  18.